! Configuration by Bento ;) 
! mailto:impalador@gmail.com

configure terminal
	hostname R_Pel
	service password-encryption
	enable secret cisco
	banner motd "R_Pel - Local: Pelotas" 
	
	line console 0
		password cisco
		login
		exit

	line vty 0 4
		password cisco
		login
		exit

	int f0/0
		ip address 192.168.40.1 255.255.255.0
		bandwidth 100000
		no shutdown

	!!
	! Conexao FRAME-RELAY proveniente da matriz
	!!
	interface s0/0
		no ip address
		encapsulation frame-relay
		description "CKt virtual from: POA (SW)"
		no shutdown
		exit


	!!
	! N - Pel
	!!
	interface s0/0.301 point-to-point
		ip address 172.16.3.2 255.255.255.252	
		frame-relay interface-dlci 301
		description "CKT virtual -> Pel"
		bandwidth 56
		no shutdown
		exit
		
	! Roteamento Dinamico via OSPF
	router ospf 20
	   network 192.168.40.0 0.0.0.255 area 0
   	   network 172.16.3.0 0.0.0.3 area 0
	exit	


	exit
copy running-config startup-config